microbit = codesters.Microbit()
microbit.show_string("hello")
stage.set_background("moon")
sprite = codesters.Sprite("astronaut1")
sprite.move_down(150)
def button_a():
sprite.move_left(50)
microbit.event_button_a(button_a)
def button_b():
sprite.move_right(50)
microbit.event_button_b(button_b)
ball = codesters.Sprite("rock")
ball.set_x_speed(5)
ball.set_y_speed(5)
def collision(sprite, hit_sprite):
my_var = hit_sprite.get_y_speed()
sprite.event_collision(collision)
stage.disable_floor()
t = codesters.Teacher()
try:
additions = t.find_text("+")
tval1 = additions[0][1]
except:
tval1 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 != "DNE", "Great job!")
t1.add_failure(tval1 == "DNE", "Did you add Addition inside your collision event?")
t2 = TestObjective()
t2.add_success("-my_var" in tval1 and "1" in tval1 and "+" in tval1, "Great job!")
t2.add_failure(not("-my_var" in tval1 and "1" in tval1 and "+" in tval1), "Did you change what two things are being added together?")
tester = TestManager()
tester.add_test_list([t1, t2])
tester.run_tests()
tester.display_first_feedback()
-
Run Code
-
Activity Submitted!
Submit Work
-
Next Activity
-
Stop Running Code
-
Show Chart
-
Show Console
-
Reset Code Editor
-
Codesters How To (opens in a new tab)